Hi, I am using twilio auth (passwordless) and Next.js. After supabase.auth.verifyOTP I can see the login content on the page and see session object returned correctly. However, when I refresh the page, the page goes back to the un-authenticated content and the supabase.auth.session() returns null. Do I need to call any other method to make the session persist across page (i.e. the definition of session). My code is 1) on the index page
{!session ?
:
}
2)In the Auth component I called await supabase.auth.verifyOTP({
phone: number,
token: code,
})